home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / unarced / graphics / anim / preloadanim.h < prev    next >
C/C++ Source or Header  |  1995-03-17  |  461b  |  31 lines

  1.  
  2. /* preloadanim.h
  3.  */
  4.  
  5. #ifndef PRELOADANIM_H
  6. #define PRELOADANIM_H
  7.  
  8. struct FrameHD
  9.    {
  10.    struct FrameHD *next;
  11.    struct FrameHD *prev;
  12.    BitMapHeader *bmhd;
  13.    AnimationHeader *anhd;
  14.    CamgChunk *camg;
  15.    WORD cmap[32];
  16.    ULONG *body;
  17.    ULONG bodylength;
  18.    UBYTE nColorRegs;
  19.    UBYTE pad;
  20.    };
  21.  
  22. struct IFFfile
  23.    {
  24.    struct IFFfile *next;
  25.    char name[40];
  26.    struct FrameHD *firstframe;
  27.    struct FrameHD *lastframe;
  28.    };
  29.  
  30. #endif PRELOADANIM_H
  31.